home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / wayissue.sql < prev    next >
Text File  |  2000-05-12  |  997b  |  32 lines

  1. /* RCSVER $Id: wayissue.sql,v 1.2 1999-06-03 14:37:26-05 evan CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        wayissue.sql
  6. * Date:        05/24/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the wayissue table. This table contains probed data
  9. *        from the WAYFARER_ISSUE_TICKET_RECORD.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE wayissue
  13. (
  14.     det_seq_num    NUMBER(38)
  15.         CONSTRAINT ref_wayissue REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),
  17.     conv_date    DATE,
  18.     descriptor     NUMBER(38),
  19.     dvariable    NUMBER(38),
  20.     process_type    NUMBER(38),
  21.     expday        NUMBER(38),
  22.     expmo        NUMBER(38),
  23.     expyr        NUMBER(38),
  24.     card_id        NUMBER(38),
  25.     pos_id        NUMBER(38),
  26.     card_rte    NUMBER(38),
  27.     journday    NUMBER(38),
  28.     card_val    NUMBER(38),
  29.     radix        VARCHAR2(12),
  30.         CONSTRAINT pk_wayissue PRIMARY KEY (det_seq_num)
  31. );
  32.